*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1e2a38;
    color: white;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 35px 12%;
    background: rgb(75, 75, 75);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo{
    font-size: 25px;
    color: white;
    font-weight: 600;
    transition: 0.3s ease;
}

.logo:hover{
    color: rgb(27, 154, 27);
    text-shadow: 0 0 25px rgb(27, 154, 27),
                 0 0 50px rgb(27, 154, 27);
    transform: scale(1.1);
}

span{
    color: rgb(27, 154, 27);
}

#menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    color: white;
}

.navbar {
    display: flex;
}

.navbar a{
    font-size: 18px;
    color: white;
    font-weight: 500;
    margin: 0 20px;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease;
}

.navbar a:hover,
.navbar a.active{
    color:rgb(27, 154, 27);
    border-bottom: 3px solid rgb(27, 154, 27);
}

.mentions-container {
    max-width: 1200px;
    margin: 120px auto 40px;
    padding: 40px;
    background-color: #2c3e50;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 90%;
}

.mentions-container h1 {
    color: #42a5f5;
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.mentions-container h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: rgb(27, 154, 27);
}

.mentions-container h2 {
    color: rgb(27, 154, 27);
    font-size: 24px;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(27, 154, 27, 0.3);
}

.mentions-container p, 
.mentions-container li {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 16px;
}

.mentions-container ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.mentions-container li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.mentions-container li::before {
    content: '•';
    color: rgb(27, 154, 27);
    position: absolute;
    left: 0;
}

.footer{
    position: relative;
    width: 100%;
    padding: 40px 0;
    background-color: black;
    margin-top: auto;
}

.footer .social{
    text-align: center;
    padding-bottom: 25px;
    color: white;
}

.footer .social a{
    font-size: 24px;
    color: white;
    border: 2px solid rgb(27, 154, 27);
    width: 40px;
    height: 40px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 8px;
    box-shadow: inset 0 0 10px rgb(27, 154, 27), 0 0 10px rgb(27, 154, 27);
    transition: 0.3s ease;
}

.footer .social a:hover{
    transform: scale(1.2)translate(-10px);
    color: rgb(27, 154, 27);
    border: 2px solid rgb(27, 154, 27);
}

.footer ul{
    margin-top: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}

.footer ul li a{
    color: white;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease;
}

.footer ul li a:hover{
    border-bottom: 3px solid rgb(27, 154, 27);
}

.footer ul li{
    display: inline-block;
    padding: 0 15px;
}

.footer .copyright{
    margin-top: 15px;
    text-align: center;
    font-size: 12px;
    color: white;
}

.tiret {
    color: white;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .header {
        padding: 25px 8%;
    }
}

@media screen and (max-width: 991px) {
    .header {
        padding: 20px 5%;
    }
    .navbar a {
        font-size: 16px;
        margin: 0 10px;
    }
}

@media screen and (max-width: 768px) {
    .header {
        padding: 15px 5%;
    }
    .logo {
        font-size: 20px;
    }
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgb(75, 75, 75);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 100px 0;
        transition: 0.3s ease;
        z-index: 10000;
    }
    .navbar.active {
        right: 0;
    }
    .navbar a {
        display: block;
        font-size: 20px;
        margin: 15px 0;
        padding: 10px 20px;
        border-radius: 5px;
        transition: 0.3s ease;
    }
    .navbar a:hover {
        background: rgb(27, 154, 27);
        color: white;
    }
    #menu-icon {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .header {
        padding: 15px 5%;
    }
    .navbar {
        width: 100%;
    }
    #menu-icon {
        font-size: 24px;
    }
    .logo {
        font-size: 20px;
    }
} 